-
Install GIT
-
Configure
git config --global user.name "Your name"
git config --global user.email "[email protected]"
Note: Ask for System admin's help if you dont know how to do that.
- Initialize ( One time process only )
git init
- Stag changes ( Git will reinitialize tracking file and folders )
git add -A
- Commit changes
git commit -m "enter your commit message here"
- Push
git push origin <branch-name>