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 characters
| # Creates a better, more succinct log output | |
| # git logg | |
| git config --global alias.logg 'log --abbrev-commit --decorate --oneline --graph' | |
| # Creates a better, more succinct log output for all branches | |
| # git la | |
| git config --global alias.logg 'log --abbrev-commit --decorate --oneline --graph --all' | |
| # Concise git status | |
| git config --global alias.ss 'status -s' |
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 characters
| find . -name '*.orig' -delete |
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 characters
| # Run this command in bash to create the .bash_profile file and add the necessary entry to it | |
| echo "PROMPT_COMMAND='ConEmuC -StoreCWD'" >> ~/.bash_profile |
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 characters
| Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
| cinst git | |
| cinst vscode | |
| cinst conemu | |
| cinst fiddler | |
| cinst googlechrome | |
| cinst spotify | |
| cinst mremoteng | |
| cinst todoist |
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 characters
| git rm -r --cached . | |
| git add . | |
| git commit -m ".gitignore is now working" | |
| // Note that you need to commit any staged changes before doing this | |
| // Note the . at the end of the first line, this is important for removing all cached files. |
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 characters
| git config --global merge.tool p4merge | |
| git config --global mergetool.p4merge.cmd 'p4merge $BASE $LOCAL $REMOTE $MERGED' | |
| git config --global diff.tool p4merge | |
| git config --global difftool.p4merge.cmd 'p4merge.exe $BASE $LOCAL $REMOTE $MERGED' |