Aman Sharma
Posted on September 5, 2020
Refer the below Youtube Video link for better understanding.
Commands are -
For push-
git init
git remote add origin https://gitlab.com/crew-chief-systems/bot
git remote -v (for checking current repository)
git add -A(add all files)
git commit -m 'Added my project'
git pull --rebase origin master
git push origin master
For Global registratrtion-
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
/// For pushing updates to Repo ---
git fetch origin master
git pull origin master
git add .
git commit -m 'your commit message'
git push origin master
💖 💪 🙅 🚩
Aman Sharma
Posted on September 5, 2020
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.