Recent Changes - Search:

MineTest?

IRC?

Develop?

PC?

Windows?

Linux?

PmWiki

pmwiki.org

edit SideBar

GIT /

GIT

Create empty repo

~ $ git init
~ $ git config user.name "Vasya Ichkoff"
~ $ git config user.email "vasyaichkoff@gmail.com"


Add remote repo

~ $ git remote add main https://github.com/lastick/my_project.git


Push to remote repo

~ $ git push main master


Pull from remote repo

~ $ git pull main master


Creating a branch for a build

~ $ git checkout -b build v1.0


Clone missing branch to exist repo

~ $ git fetch origin new_branch
~ $ git checkout new_branch


Get a full list of remote references

~ $ git ls-remote <remote>


Create bundle file

~ $ git bundle create <project>.pack <branch>


Edit - History - Print - Recent Changes - Search
Page last modified on June 16, 2023, at 11:23 PM