Basic Git commands every developer must know ๐๐
git config
you must first configure git before you can use it
the username and email address that will be used with your commits can be specified using this command
#set up git with your name
git config --global user.name <username>
#set up git wi...
889-dj.github.io3 min read