git config --global core.autocrlf false warning: LF will be replaced by CRLF in .idea/vcs.xml.The file will have its original line endings in your working directory.warning: LF will be replaced by CRLF in .idea/workspace.xml.The file will have its o…
You can set up global "git config" settings that apply to all git projects on your system. In this lesson, we review how the ./gitconfig file works. We then add our own git config settings: username, email, editor, and git aliases. There are man…
use following command to see the current config: $ git config --list use following command to config the username and email: $ git config user.name "YOURNAME" $ git config user.email "YOUREMAIL"…
In Lynda course Building a Web Interface with React.js 003 Using the exercises > git clone --bare https://github.com/planetoftheweb/reactinterface.git .git > git config --bool core.bare false > git reset --hard > git branches…
$ git commit -a -m 'v6' *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in th…