Last active
          February 27, 2025 22:45 
        
      - 
      
 - 
        
Save vladmeh/d3e328e8c43a530a2a0dff84737175e3 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
vladmeh revised this gist
Feb 27, 2025 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ // vscode editor $ git config --global core.editor "code --wait" // checkout $ git config --global alias.co checkout  - 
        
vladmeh revised this gist
Feb 27, 2025 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,6 @@ // vscode editor git config --global core.editor "code --wait" // checkout $ git config --global alias.co checkout $ git config --global alias.ch checkout  - 
        
vladmeh revised this gist
Sep 1, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,6 +12,6 @@ $ git config --global alias.ci commit // status $ git config --global alias.st status // push (only CMD) $ git config --global alias.pushall "!git remote | xargs -L1 git push --all" $ git config --global alias.pushtags "!git remote | xargs -L1 git push --tags"  - 
        
vladmeh created this gist
Apr 18, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ // checkout $ git config --global alias.co checkout $ git config --global alias.ch checkout // branch $ git config --global alias.br branch $ git config --global alias.curb "rev-parse --abbrev-ref HEAD" // commit $ git config --global alias.ci commit // status $ git config --global alias.st status // push $ git config --global alias.pushall "!git remote | xargs -L1 git push --all" $ git config --global alias.pushtags "!git remote | xargs -L1 git push --tags"