To get started you will need to run these commands in your terminal.
New to Git? Learn the basic Git commands
git config --global user.name "Васин Юрий Александрович"
git config --global user.email "[email protected]"
git config --global core.autocrlf false
If you want to simply clone this empty repository then run this command in your terminal.
git clone https://sbtatlas.sigma.sbrf.ru/stash/scm/ivb/bx24.module.git
If you already have code ready to be pushed to this repository then run this in your terminal.
cd existing-project
git init
git add --all
git commit -m "Initial Commit"
git remote add origin https://sbtatlas.sigma.sbrf.ru/stash/scm/ivb/bx24.module.git
git push -u origin master
If your code is already tracked by Git then set this repository as your "origin" to push to.
cd existing-project
git remote set-url origin https://sbtatlas.sigma.sbrf.ru/stash/scm/ivb/bx24.module.git
git push -u origin --all
git push origin --tags
All done with the commands?