summaryrefslogtreecommitdiff
path: root/aliases.gitconfig
diff options
context:
space:
mode:
authorOwen Jacobson <owen.jacobson@grimoire.ca>2013-11-25 12:13:08 -0800
committerOwen Jacobson <owen.jacobson@grimoire.ca>2013-11-25 12:13:08 -0800
commit479e8b087b7cb2f5671f465bfdbebe5f37dc8869 (patch)
treea8e79188e4c17038304178d43694ec59ce0044af /aliases.gitconfig
parent1ec0ee8f1ef75decd14e7707ff178b1892771d53 (diff)
parenta141b93d4b3de6d4e404c657dcf7c1a91ca2ab6c (diff)
Merge pull request #1 from ojacobson/newbranch-is-start
Rename `newbranch` to `start` for tersity (thanks, @idcmp!)
Diffstat (limited to 'aliases.gitconfig')
-rw-r--r--aliases.gitconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/aliases.gitconfig b/aliases.gitconfig
index 708629b..528f49c 100644
--- a/aliases.gitconfig
+++ b/aliases.gitconfig
@@ -29,10 +29,10 @@
prstash = config --add remote.origin.fetch +refs/pull-requests/*/from:refs/pull/*
## Branch lifecycle
- # Create a branch: `git newbranch BRANCHNAME` (protip: run `git fall`
+ # Create a branch: `git start BRANCHNAME` (protip: run `git fall`
# first.) The new branch will track origin/master by default.
# Tracking info gets used below.
- newbranch = checkout --track origin/master -b
+ start = checkout --track origin/master -b
# Branch log for the current branch: `git blog [log options]`
blog = log HEAD@{upstream}..HEAD
# Aggregate diff of the current branch: `git bdiff [diff options]`