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

Linux

47341 readers
1530 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 5 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
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 year ago* (last edited 1 year ago) (1 children)

If I understand OP's explanation correctly, they're simply trying to make a, possibly selfhosted, copy of a GitHub repo.
In that case the misunderstanding would be in the role of the git command; it being simply a frontend to any git repo, not a client to GitHub.

The correct commands to achieve that would be

$ git init .
$ git remote add origin url
$ git remote add github url
$ git fetch github
$ git merge github/master 
$ git push -u origin master

There may be errors in the above code. I'm writing this from memory on my phone.

[–] [email protected] 1 points 1 year ago

@[email protected]

If I understand OP’s explanation correctly, they’re simply trying to make a, possibly selfhosted, copy of a GitHub repo.

  • yes, you are correct in sense.
  • all i am trying to do is keep a copy of upstream repo. similar to mirroring repo.
  • i have to remove git push origin master
  • i will again check after few days whether the command is correct