- git status
Show the working tree status, i.e. what have I changed and what have I added. - git commit -a -m “my message”
Commit all my changes and store with the message “my message”. - git push origin
Push all my commits back to the remote server. - git tag
List the tags in the current branch. - git tag -a myTag -m “tag message”
Create a tag called myTag and store with the message “tag message”. - git show myTag
Show information about the tag myTag. - git branch myBranch
Create a branch called myBranch. - git branch
Display a list of all branches. - git merge myBranch
Merge the changes made on the current branch into myBranch. - git checkout myBranch
Switch code base to the branch myBranch.
On Linux Mint, the default version of Firefox is installed and configured to allow the following search engines to be queried directly from the address bar: Yahoo! Startpage DuckDuckGo Wikipedia Mint defines these as the default available set of search engines based upon 3 criteria (funding to Linux Mint, privacy support and whether the search engine is non-commercial). Other search engines such as Google, Bing or Twitter, etc. can easily be added into the default version of Firefox however. To add a different search provider, browse to Search Engines At the bottom of the page, click on the icon of the requested search engine, then click on the ... button in the URL bar and select the Add Search Engine option. You then have the option to change the default search engine within Firefox preferences to your new choice.
Comments
Post a Comment