GIT /
GITCreate empty repo ~ $ git init ~ $ git config user.name "Vasya Ichkoff" ~ $ git config user.email "vasyaichkoff@gmail.com"
~ $ git remote add main https://github.com/lastick/my_project.git
~ $ git push main master
~ $ git pull main master
~ $ git checkout -b build v1.0
~ $ git fetch origin new_branch ~ $ git checkout new_branch
Get a full list of remote references ~ $ git ls-remote <remote>
~ $ git bundle create <project>.pack <branch>
|