Community driven content discussing all aspects of software development from DevOps to design patterns. Privacy minded people aren’t wont to just hand over their ...
edit configuration : git config --global –edit git config --global credential -helper store will store your login details next time they are entered, saving you from having to enter them again ...
Repeated prompts to enter your Git username and password are a frustrating annoyance developers can live without. Unfortunately, if your Git installation has not been configured to use a credential ...
git add [file or folder name] move it to staging Area git add * move all files and folder To staging Area git reset head [file or folder name] un stage git commit move it to local and make it ready to ...