Following an answer (http://goo.gl/EcqpTZ) here’s what I did to setup the Git Bash environment to log me in once when I start it up. This method worked for me to make “remember me” working or to save my password for…
Category: git
Useful git commands or actions
Allos Overwrite Ref. Ignoring “Your local changes to the following files would be overwritten by merge” on pull git checkout HEAD^ file/to/overwrite git pull Ignoring versioned files To start ignoring a file $ git update-index –assume-unchanged path/to/file.txt To start track…