Skip to content
Snippets Groups Projects
Commit f4f38d03 authored by Jiří Kalvoda's avatar Jiří Kalvoda
Browse files

BASHRC fix escaping

parent 4a96bcaf
No related branches found
No related tags found
No related merge requests found
......@@ -231,19 +231,19 @@ gia(){
git add "$@"
}
giac(){
git add $@;git commit;
git add "$@"; git commit;
}
giaac(){
git add . $@;git commit;
git add . "$@"; git commit;
}
giaca(){
git add $@;git commit --amend;
git add "$@"; git commit --amend;
}
giaaca(){
git add . $@;git commit --amend;
git add . "$@"; git commit --amend;
}
gip(){
git pull $@;git push $@;
git pull "$@"; git push "$@";
}
gipma(){
b=$1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment