Git for impatients


Clone a project: git clone git@github.com:nemo83/webservices.git Commit a change git commit -am “comment” Push (to remote) a change git push Retrieve changes for the current branch (it’s actually more but you’re impatient!) git pull –rebase Create a branch git branch branch_name Switch to a branch git checkout branch_name Switch and Branch in one go git … Continue reading Git for impatients