About 51 results
Open links in new tab
  1. How to update a GitHub access token via command line

    Dec 9, 2021 · If you want to update your GitHub Personal Access Token in VSCode, you can install the GitHub Extension. You can also update your token via the command line. Note that this method …

  2. Can you get the number of lines of code from a GitHub repository?

    Nov 12, 2014 · The question “ Count number of lines in a git repository ” asks how to count the lines of code in a local Git repository, but: You have to clone the project, which could be massive. Cloning a …

  3. git - How to generate ssh keys (for github) - Stack Overflow

    May 6, 2017 · As a note, for many years -t ed25519 has been enough better that it's now the default and strongly preferred type. It delivers better security with shorter keys and shorter signatures that are …

  4. What do raw.githubusercontent.com URLs represent?

    Aug 21, 2016 · Are you asking us to explain how that install command works? Have you looked at the contents of the file referenced on raw.githubusercontent.com? Have you looked at the …

  5. How can I delete the last n commits on GitHub and locally?

    Apr 14, 2012 · To remove the 2 (two) last commits: git reset --hard HEAD~2 And to push this change to remote, you need to do a git push with the force (-f) parameter: git push -f However, I don't …

  6. git - Create a tag in a GitHub repository - Stack Overflow

    Aug 14, 2013 · I have a GitHub repository and I need to tag it. I created a tag in a shell using the following command: git tag 2.0 git tag >>> 2.0 The tag does exist locally, but does not appear on Git...

  7. How to connect my GitHub Enterprise Account with Visual Studio Code

    Oct 29, 2021 · I want to know if it's possible to connect my github enterprise account of my organization to vs code, and if so how? I know how to sign in with a normal github account on vs code but it …

  8. How to add license to an existing GitHub project - Stack Overflow

    Sep 25, 2016 · When I created a GitHub project I chose None. How can I now add a GPL license to my already added project?

  9. git - Search code inside a Github project - Stack Overflow

    Sep 1, 2010 · Is there a way to grep for something inside a Github project's code? I could pull the source and grep it locally, but I was wondering if it's possible through the web interface or a 3rd-party alter...

  10. What does it mean to fork on GitHub? - Stack Overflow

    After few explorations, In my understanding, it is related to contribution. Fork means to make a copy of the repository (the one being forked) into my own github account. If I want to fork the off...