Difference between revisions of "GitHub"

From UConn PAN
Jump to navigation Jump to search
Line 166: Line 166:
 
       &emsp; &nbsp; You can now continue to code and push/pull to GitHub as needed to track/update changes. Good luck, if it doesn't work don't blame me ... I only work here :) </li><br>
 
       &emsp; &nbsp; You can now continue to code and push/pull to GitHub as needed to track/update changes. Good luck, if it doesn't work don't blame me ... I only work here :) </li><br>
 
</ol>
 
</ol>
 +
 +
== <i>Ignoring Files (.gitignore)</i> ==
 +
There are various reasons to not want to track/push files. Here are some and how to handle them.
 +
<ol>
 +
<!-- Step 1 -->
 +
===Case 1 ===
 +
Case #1 - Trouble pushing files due to being too big (>50 MB, GitHub max) <br>
 +
  <li><u>Find those files</u>: <br>
 +
      &ensp; - Ensure you're in the directory of interest (use <b>cd </b> command as needed) <br>
 +
      &ensp; - Type <b>find . -type f -size +50M </b><br>
 +
      &ensp; - This will list files that are above GitHub's 50 MB limit </li><br>
 +
 +
  <li><u>Create a .gitignore file</u>: <br>
 +
      &ensp; - To create one use the command <b>touch .gitnore </b><br>
 +
      &ensp; &ensp; Make sure you are in the root folder of your repository on your local computer when you use this command <br>
 +
      &ensp; &ensp; Hint - The root folder is named the same as your repository on GitHub </li><br>
 +
 +
  <li><u>Use your favorite text editor to open the file (i.e. Vim, Notepad++, etc.)</u>: <br>
 +
      &ensp; - Enter the oversized files from above into the girignore file<br>
 +
      &ensp; &ensp; Make sure to remove the . if you decide to copy/paste <br>
 +
      <i><u>Example</u>:</i></li>
 +
 +
<!-- Example -->
 +
<pre># Remember: A line that follows # is  a comment.
 +
#
 +
# To ignore a file update this file (.gitignore) then add, commit, and push this file.
 +
# Do this BEFORE any other pushes so the rule will be in effect.
 +
 +
# These files are above GitHub's recommended file size (50 MB). SUBFOLDER/FILE
 +
MonteCarlo/fermi.txt
 +
Examples/mctuple.root
 +
Examples/mctuple.hbook
 +
Examples/ntuple.root
 +
Examples/log
 +
Examples/omega2p_sim_1.itape
 +
Examples/ntuple.hbook
 +
 +
# These are object files. Code that is compiled to machine code, no need fo me to saved/tracked in GitHub.
 +
# * is a wild card, so anything that has .o at the end is ignored using *.o, while *.o.* says ignore anything that has .o. within the name.
 +
*.o
 +
*.o.*
 +
</pre><br>
 +
 +
  <li><u>Ignore already checked in files</u>: <br>
 +
      &ensp; - Since you already tried and failed to fully push those file, you'll need to untrack them <br>
 +
      &ensp; - From your terminal type <b>git rm --cached FILENAME </b><br>
 +
      &ensp; &ensp; Hint - You can copy/paste from the find results <b>git rm --cached /SUBFOLDER/FILENAME </b><br>
 +
      &ensp; - Do this for all files that require it before proceeding </li><br>
 +
 +
 +
# If you want to ignore a file that is already checked in,
 +
# you must untrack the file before you add a rule to ignore it.
 +
# From your terminal, untrack the file:
 +
 +
 +
 +
 +
 +
  
 
== <u><i>Extras</i></u> ==
 
== <u><i>Extras</i></u> ==

Revision as of 20:37, 5 June 2023

GitHub is a web-based platform that provides hosting of coding repositories. It offers a centralized location for people to store, manage, and allow collaboration on their code. It is especially useful for version control and project tracking. The following information is geared towards linking gluey annex repositories with GitHub, but can easily be used to link your home computer to a GitHub repository. This wiki page is being updated as the author learns how to use GitHub, so if you know a better, more efficient way to accomplish a task then by all means please do it that way (... and add an addendum to this page if you have a login).


Setup Option #1 (GitHub → local computer)

Adding a repository in your GitHub account to your local computer (e.g. cloning).

  1. Sign up for a GitHub account by going to the GitHub website and create a new account
    - If you do not make your email address public you will have problems pushing your code later

  2. Once you're logged in, click on the "+" sign at the top-right corner of the GitHub homepage and select "New repository" to create a new repository. Give your repository a name and provide a description.
    • The repository name will be your folder name on gluey (see below)
    • Repository description is optional
    • Repository Setting:
      • Private vs. Public
      • License (optional) - MIT License is well known and least restrictive
      • You can add a README file
      • You can also rename the main branch (this must be done before the repository is created, changing the name will change all subsequent repositories that are made in the future)
      • And more ...

  3. Once the repository is setup online, add a Personal Access Token
    • At the top-right of the GitHub website click on the pull-down and select "Settings"
    • On the left select "Developer settings" located at the bottom
    • Then on the left select "Personal access tokens"
    • Select "Fine-grained tokens" or "Tokens (classic)", I did the prior one
      • For the Fine-grained token you will need to select which permissions you'd like to allow (not sure about the classic token)
      • Select a period for the token to be valid, upto 90 days maximum (I believe)
      • Once complete it will provide you with the token you can copy, this will be used in place of your password later

  4. Clone your repository
    • Log in to gluey using a VNC and navigate to the location in your annex where you'll be working
      • You can do the same for your home computer, you'll just need to open a terminal or command prompt and navigate to the directory where you want to store your code
    • Use the command:
      git clone https://github.com/your-username/your-repository.git
        - Make sure to replace "your-username" with your GitHub username and "your-repository" with the name of your repository
    • You will now need to login. Use your GitHub Username, but make sure to use the Personal Access Token you created earlier and NOT your GitHub password

  5. At this point you should have a new folder in your annex with the name of your GitHub repository
    • Confirm that the remote repository is correctly added, use the command:
      git remote -v
    • If needed, you can link the local repository to the remote repository using:
      git remote add origin repository-url

  6. To switch to or determine a branch in Git, you can use the git checkout command:
    • Determine the name of the branch you want to switch to via:
      git branch
        - It will show all branches available and indicate your current branch with a *
    • Create a new branch using:
      git branch new-branch-name
    • Switch to that branch and work in it via:
      git checkout new-branch-name

    • The two steps above can be combined:
      git checkout -b new-branch-name
      - This will create and switch to the new branch in one step

  7. Add files/folders to your directory

  8. When you're ready to save, make sure you are in the root directory of your repository or the directory where the new folder you want to save is located. Then use the git add command to add the new folder and its contents to the staging area. Run the following command:
    git add folder-name
     - Adds the specified file or folder
      OR
    git add .
     - Adds all new files and folders in the current directory recursively, does not add higher directory information
      OR
    git add -A
     - Adds all files: new, modified, and deleted files. It will include files in the current directory and in higher directories that belong to the same git repository
      OR
    git add -u
     - Adds modified and deleted files only. Excludes new files. It will include files in the current directory and in higher directories that belong to the same git repository

    For a more detailed description of git add go to: https://github.com/git-guides/git-add

  9. Once the new folder/file is added to the staging area, you can commit the changes using the git commit command:
    git commit -m "Commit message"
      - Replace Commit message with a descriptive message summarizing the changes you made. Keep " " around your message

  10. After committing the changes (on your local machine), you can push them to the remote repository on GitHub using the git push command:
    git push origin branch-name
      - Replace branch-name with the name of the branch you want to push to (e.g., main)
      - You will need to login with your Username and Personal Access Token

Setup Option #2 (Local computer → GitHub)

Adding a repository from your local computer to GitHub

  1. On your local computer, initialize the folder you want to adds as a repository:
      - Use cd to navigate to the folder that contains the work you'd like to track/backup
      - Type git init to initialize the folder for Git tracking
      - (optional step) Type touch .gitignore to create a blank file in that folder, which can later be modify to specify files or types of files you don't want to track

  2. Go to https://github.com/ , login, and create a repository as described above. Name the repository the same as your working folder you did the git init command in

  3. On your local computer, link your working folder to the GitHub repsoitory:
      - Type git remote add origin github-repository-url
        github-repository-url can be found online:
            - In your repository folder click on the green [<> Code] button then under the Local tab you'll see Clone HTTPS
            - Click the copy button to paste the address into the line of code above

  4. On your local computer, merge the two repositories (local and online):
      - Type git pull origin main
        This assumes the GitHub branch is named main in the repository you created online

  5. On your local computer, add files to track:
    git add folder-name
    - Adds the specified file or folder
      OR
    git add .
    - Adds all new files and folders in the current directory recursively, does not add higher directory information
      OR
    git add -A
    - Adds all files: new, modified, and deleted files. It will include files in the current directory and in higher directories that belong to the same git repository
      OR
    git add -u
    <  - Adds modified and deleted files only. Excludes new files. It will include files in the current directory and in higher directories that belong to the same git repository

    For a more detailed description of git add go to: https://github.com/git-guides/git-add

  6. On your local computer, commit that add:
      - Type git commit -m "Message here"
        Change Message here to a brief description of the reason for the commit (ex: Initial commit)
        Make sure to keep ""

  7. On your local computer, change (if required) the branch name to the name listed in the online repository:
      - Typing git branch tells you the name(s) of the branch(es) with the current one having a * next to it
      - If you need to modify your local computer's branch name use git branch -M main where main is the name to change the branch to
      - Use git branch to verify the change

  8. On your local computer, push your commit:
      - Type git push -u origin main
        You'll need to enter your GitHub profile name and your Personal Access Token to complete the push

      - The purpose of the -u flag is to establish an upstream relationship between the local branch and the specified remote branch
        This is typically done on the initial push to a remote repository. After that, you don't need to use the -u flag again for subsequent pushes to the same branch

  9. At this point your online GitHub repository should be the same as the working folder on your local computer
        You can now continue to code and push/pull to GitHub as needed to track/update changes. Good luck, if it doesn't work don't blame me ... I only work here :)

Ignoring Files (.gitignore)

There are various reasons to not want to track/push files. Here are some and how to handle them.

    Case 1

    Case #1 - Trouble pushing files due to being too big (>50 MB, GitHub max)

  1. Find those files:
      - Ensure you're in the directory of interest (use cd command as needed)
      - Type find . -type f -size +50M
      - This will list files that are above GitHub's 50 MB limit

  2. Create a .gitignore file:
      - To create one use the command touch .gitnore
        Make sure you are in the root folder of your repository on your local computer when you use this command
        Hint - The root folder is named the same as your repository on GitHub

  3. Use your favorite text editor to open the file (i.e. Vim, Notepad++, etc.):
      - Enter the oversized files from above into the girignore file
        Make sure to remove the . if you decide to copy/paste
    Example:
  4. # Remember: A line that follows # is  a comment.
    #
    # To ignore a file update this file (.gitignore) then add, commit, and push this file.
    # Do this BEFORE any other pushes so the rule will be in effect.
    
    # These files are above GitHub's recommended file size (50 MB). SUBFOLDER/FILE
    MonteCarlo/fermi.txt
    Examples/mctuple.root
    Examples/mctuple.hbook
    Examples/ntuple.root
    Examples/log
    Examples/omega2p_sim_1.itape
    Examples/ntuple.hbook
    
    # These are object files. Code that is compiled to machine code, no need fo me to saved/tracked in GitHub.
    # * is a wild card, so anything that has .o at the end is ignored using *.o, while *.o.* says ignore anything that has .o. within the name. 
    *.o
    *.o.*
    

  5. Ignore already checked in files:
      - Since you already tried and failed to fully push those file, you'll need to untrack them
      - From your terminal type git rm --cached FILENAME
        Hint - You can copy/paste from the find results git rm --cached /SUBFOLDER/FILENAME
      - Do this for all files that require it before proceeding

    1. If you want to ignore a file that is already checked in,
    2. you must untrack the file before you add a rule to ignore it.
    3. From your terminal, untrack the file:

    Extras

    • For more information on common git commands, check out the links in the header at the top of the Git Guides webpage (https://github.com/git-guides/git-add)
        - This site is a good starting point for common questions

    • git status
        - This command shows the branch you're on, what files are in the working or staging directory, and other important information
      Example:
              mcintyre@gluey/nfs/direct/annex/mcintyre/GitRepo/Radphi_pi02gp/RUN0
              $ git status
              # On branch PI0
              # Untracked files:
              #   (use "git add <file>..." to include in what will be committed)
              #
              #	STEP6/
              #	STEP7/
              nothing added to commit but untracked files present (use "git add" to track)
            

    • git reset
        - This command unstages all changes (e.g. all git add performed before a git commit)
    • git reset file-name
        - This command undoes git add for uncommited changes to file file-name