- clone repo [ size_ 34 mb ]
- added
$ git remote add citer url
- but when
$ git checkout master && git fetch citer && git pull --rebase citer master && git push origin master
- the above command requires github username and password
- i dont want to create account on github
- i will not create pull requests
- is there any way to keep clone uptodate with remote without requiring github username & password
You must log in or register to comment.
You can’t push to github without an account. That’s how github can validate that you have the rights to push. If that is a problem, host your own gitea instance.
Once you have an account, the way to do it is using ssh keys. Use ssh-keygen (or putty keygen) to generate a key pair, add the public key to your account, and the set up
~/.ssh/config
.Don’t push.
Learn how to use git with this open source game https://ohmygit.org/
If the repo is private you’d need to set up ssh keys with an account to pull, but pulling from public can be done anonymously
deleted by creator
deleted by creator
Clone over HTTPS, not git.