Useful GIT & Nano Commands
Git commands
Set up Git repository
git init
git remote add origin https://github.com/pradeepkumargali/GenerateWord-OpenXML.git
git push -f origin master
http://gitready.com/intermediate/2009/02/13/list-remote-branches.html
Rewrite History (use Caution)
#go back a commit and force push to repo
Abort Merge
git merge --abort
A good list of Nano Editor Commands
http://www.howtogeek.com/howto/42980/
Cheat Sheet
https://na1.salesforce.com/help/pdfs/en/salesforce_git_developer_cheatsheet.pdf
Set up Git repository
git init
git remote add origin https://github.com/pradeepkumargali/GenerateWord-OpenXML.git
git push -f origin master
http://gitready.com/intermediate/2009/02/13/list-remote-branches.html
Rewrite History (use Caution)
#go back a commit and force push to repo
git reset --hard HEAD^
git push -f
Abort Merge
git merge --abort
A good list of Nano Editor Commands
http://www.howtogeek.com/howto/42980/
Cheat Sheet
https://na1.salesforce.com/help/pdfs/en/salesforce_git_developer_cheatsheet.pdf
Comments
Post a Comment
Feedback - positive or negative is welcome.