I want create more than one command in one line. Example:
git fetch && git pull
Is possible?
This is my .gitconfig:
[alias]
rb = rebase
s = status
f = fetch
p = pull
fp = (git fetch && git pull ???)
I want create more than one command in one line. Example:
git fetch && git pull
Is possible?
This is my .gitconfig:
[alias]
rb = rebase
s = status
f = fetch
p = pull
fp = (git fetch && git pull ???)