Re-organise to use a bare repo
Re-organise to use a bare repo, e.g. https://www.atlassian.com/git/tutorials/dotfiles.
This commit is contained in:
parent
e00d9b2e96
commit
d1da7c6e15
59 changed files with 19 additions and 68 deletions
10
.zsh/configs/git.zsh
Normal file
10
.zsh/configs/git.zsh
Normal file
|
@ -0,0 +1,10 @@
|
|||
# No arguments: `git status`
|
||||
# With arguments: acts like `git`
|
||||
g() {
|
||||
if [[ $# > 0 ]];
|
||||
then
|
||||
git $@
|
||||
else
|
||||
git status --short --branch
|
||||
fi
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue