this post was submitted on 24 Sep 2023
1 points (55.6% liked)

Linux

48072 readers
1 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 
  • 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
all 8 comments
sorted by: hot top controversial new old
[–] space@lemmy.dbzer0.com 11 points 2 years ago

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.

[–] glad_cat@lemmy.sdf.org 10 points 2 years ago (1 children)
[–] jindam_vani@lemmy.world 2 points 2 years ago

@glad_cat@lemmy.sdf.org

Don’t push.

yes, removing push code resolved the issue

[–] ryannathans@aussie.zone 8 points 2 years ago

Learn how to use git with this open source game https://ohmygit.org/

[–] MrPoopyButthole@lemmy.world 4 points 2 years ago

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

[–] Max_P@lemmy.max-p.me 0 points 2 years ago

Clone over HTTPS, not git.