Size: 290
Comment:
|
Size: 3631
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
<<TableOfContents>> == Workflow for gitorious and github ==s Initial checkout: {{{#!highlight sh # Fork repo on gitorious/github # Pull repo from gitorious/github # Add remote for upstream, e.g. cd Spoon-Knife git remote add upstream git://github.com/octocat/Spoon-Knife.git git fetch upstream }}} When needing to merge upstream changes back into master: {{{#!highlight sh # Make sure we're in the branch we want to be in (i.e. master) git checkout master git fetch upstream # Merge from master branch of upstream into current branch git merge upstream/master }}} == Cookbook == === Delete remote branch === {{{#!highlight sh numbers=off git push origin :name-of-remote-branch # OR git push origin --delete name-of-remote-branch }}} === Reverting changes === Amend the previous commit that has not been propogated (i.e. undo it, then start a new one with the pending changes in the index): {{{ git commit --amend -a -m "New commit message" }}} |
|
Line 2: | Line 46: |
{{{ git reset --soft HEAD^ }}} just changes the repository without changing the files you've edited on disk. However: |
|
Line 7: | Line 57: |
For a commit that has been propagated, there is no way to undo. However, the following will create a new commit undoing the previous commit's changes: | will reset both repository and revert files. Once a commit that has been propagated, there is no way to undo. However, the following will create a new commit undoing the previous commit's changes: |
Line 12: | Line 64: |
=== Pull with rebase instead of merge === {{{ git pull --rebase }}} Configure a branch to always do a rebase instead of a merge: {{{ git config branch.$BRANCH_NAME.rebase true }}} === Enforce .gitignore === Remove files from the repository that should have been ignored by .gitignore: {{{ git rm -r --cached . git add . git status git commit -m ".gitignore is now working" }}} === Ignore whitespace bullshit === {{{ # Ignore white space when pulling or merging git pull -Xignore-space-change git merge -Xignore-space-change # Ignore white space changes when diff'ing git diff --ignore-space-change }}} === Rebase a branch === {{{#!highlight sh numbers=off # Without having branch-you-want-to-rebase checked out git rebase branch-you-want-to-rebase branch-to-rebase-from # With having branch-you-want-to-rebase checked out git checkout branch-you-want-to-rebase git rebase branch-to-rebase-from }}} Rebase off a branch that itself had been rebased (keep the un-rebased branch around as old-branch-to-rebase-from): {{{#!highlight sh numbers=off git rebase --onto branch-to-rebase-from old-branch-to-rebase-from branch-you-want-to-rebase }}} If you want to rebase but get updated stamps (do this independently of reordering/merging commits with `git rebase -i`: {{{#!highlight sh numbers=off git rebase --ignore-date }}} == Per-repository user settings == {{{#!highlight sh numbers=off git config user.name 'Samat K Jain' git config user.email 'nobody@example.com' }}} == Cleaning == {{{#!highlight sh numbers=off # Remove untracked files and directories, dry run. `-n` for dry run. git clean -df -n }}} == GPG Signing == {{{#!highlight sh # GPG sign all previous commits. Careful! git filter-branch -f --commit-filter 'git commit-tree -S "$KEY_ID"' HEAD }}} == Interesting reading == [[http://tom.preston-werner.com/2009/05/19/the-git-parable.html|The Git Parable]]: Describes building a system like git, from the ground-up [[https://wikileaks.org/ciav7p1/cms/page_1179773.html|CIA's git tips & tricks]] sheet is interesting, and oddly similar to this one. |
Contents
== Workflow for gitorious and github ==s
Initial checkout:
When needing to merge upstream changes back into master:
Cookbook
Delete remote branch
git push origin :name-of-remote-branch
# OR
git push origin --delete name-of-remote-branch
Reverting changes
Amend the previous commit that has not been propogated (i.e. undo it, then start a new one with the pending changes in the index):
git commit --amend -a -m "New commit message"
Undo a commit that has not been propagated:
git reset --soft HEAD^
just changes the repository without changing the files you've edited on disk. However:
git reset --hard HEAD^
will reset both repository and revert files.
Once a commit that has been propagated, there is no way to undo. However, the following will create a new commit undoing the previous commit's changes:
git revert HEAD
Pull with rebase instead of merge
git pull --rebase
Configure a branch to always do a rebase instead of a merge:
git config branch.$BRANCH_NAME.rebase true
Enforce .gitignore
Remove files from the repository that should have been ignored by .gitignore:
git rm -r --cached . git add . git status git commit -m ".gitignore is now working"
Ignore whitespace bullshit
# Ignore white space when pulling or merging git pull -Xignore-space-change git merge -Xignore-space-change # Ignore white space changes when diff'ing git diff --ignore-space-change
Rebase a branch
# Without having branch-you-want-to-rebase checked out
git rebase branch-you-want-to-rebase branch-to-rebase-from
# With having branch-you-want-to-rebase checked out
git checkout branch-you-want-to-rebase
git rebase branch-to-rebase-from
Rebase off a branch that itself had been rebased (keep the un-rebased branch around as old-branch-to-rebase-from):
git rebase --onto branch-to-rebase-from old-branch-to-rebase-from branch-you-want-to-rebase
If you want to rebase but get updated stamps (do this independently of reordering/merging commits with git rebase -i:
git rebase --ignore-date
Per-repository user settings
git config user.name 'Samat K Jain'
git config user.email 'nobody@example.com'
Cleaning
# Remove untracked files and directories, dry run. `-n` for dry run.
git clean -df -n
GPG Signing
Interesting reading
The Git Parable: Describes building a system like git, from the ground-up
CIA's git tips & tricks sheet is interesting, and oddly similar to this one.