Open main menu

Changes

Git asynchronous development

53 bytes added, 13:49, 25 June 2013
no edit summary
Then we add the files
git add lib/software/nmrpipe.py
# OR use this, to add changes from all tracked files
git add -u
git commit
We would like change the commit message two commits ago ('''^^''')
git rebase -i HEAD^^
git add -A u # To add changes from all tracked and untracked files
git commit -C HEAD # reuse the commit that's there. Omit this option if you want to change that too
git rebase --continue
Trusted, Bureaucrats
1,382

edits