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
Top comments (1)
Heyo,
Would you please consider embedding your video here instead of just linking to it? This way folks can see your content and discuss things on DEV without having to navigate anywhere else.
You might not have realized, but DEV actually allows folks to embed YouTube & Vimeo videos via Liquid Tags:
By the way, here's a link to the editor guide where you can see other liquid tags and formatting options.
Hope this is helpful! 🙂