moved branch name impacts
[feisty_meow.git] / infobase / configuration / git / how_to_push_existing_git_repo_to_new_target.txt
1
2
3 # add a new remote target for the repository.  this assumes you're in the
4 # feisty meow folder to start with.
5 git remote add github https://github.com/fredhamster/feisty_meow.git
6
7 # check that the new repo is listed as a remote, plus the original origins are
8 # still listed.
9 git remote -v
10
11 # stuff the repository contents up to the target.
12 git push github main
13
14