JWoC 2020 Website
- git config --global user.name "John_Doe"
- git config --global user.email "john@example.com"
- git clone url (by cloning all the files in that repo will be available to your local machine + before cloning make sure to fork the repo to your acount)
- git add filename.txt (after changing a particular file )
- git add . (too add everything)
- git commit -m "message" (it is recommended to commit with a message to tell what are the things you have changed)
- git push (push it to the main branch now it will be available in github)
git push origin branch_name (it will push your code from local branch to the master branch) e.g git push origin devsg ( it will push branch devsg( local branch) to original repo's master branch , henceforth creating a PR)
- git config --global https.proxy 172.16.102.28:8080
- git config --global http.proxy 172.16.102.28:8080
- git config --global --get-regexp http.*
- git config --global --unset https.proxy
- git config --global --unset http.proxy