Update Git Repo Without Password Again
In this article, we shall briefly look at how we can submit piece of work and contributions to a GitHub team projection. This article assumes that yous have a GitHub account. Cheque these instructions on how to create a GitHub user account. Before we get started, you need to understand the post-obit terms, as y'all will constantly come up beyond them in daily GitHub workflow.
Getting started
- Fork is a copy of a repository of someone'southward else project. Forks allows you accept to accept a repository of a project that you do non ain on your GitHub account so that yous can make some changes without affecting the original repository. Once the changes on your forked repository are validated, yous can submit these changes as contributions to the original project. Forks allows yous to make your contributions to a team project.
- Remote a repository on GitHub account exists equally a remote repository.
- Clone is downloading a re-create of the remote repository to local reckoner.
- Commits are changes made to a repository. Committing saves edits/changes to our GitHub repository. With GitHub, every commit you make has a specific signature/ID the keeps the record of the changes you have made. If you lot happen to make a wrong change, you can revert the commit and your remote repository volition be as it was before y'all fabricated the changes. A commit has a commit bulletin that allows you to have a brief clarification of the changes you are making.
- Push is used to transfer commits fabricated on a local repository to a GitHub remote repository. To push to GitHub you lot make a push request to update your local commits to your remote repository.
- Branch a feature co-operative or base branch. A feature branch typically helps you to isolate your changes from the other team as y'all make and test these changes. The base co-operative consists of merged feature branches.
- Pull request is to notify the project squad of the changes you have fabricated from a pushed branch in your GitHub repository or basically requesting the owner of the repository to pull changes you lot made, thus chosen a pull asking. A collaborator can be assigned to review your pull and propose any potential changes yous need to make. Review changes are done with commits. Once changes and reviews are consummate a team contributor or you (with access), can merge your branch to the base of operations branch of the original repository.
- Merge is merging two branches and integrating them into a single branch. A merge conflict tin can happen if the two branches y'all are attempting to merge have both modified the same part of the aforementioned file. In such a example, Git will not be able to automatically choose which version to use.
How to fork
Now that you lot know, what a fork is, allow's run into how you can fork a repository to start working on your changes and contribute to a squad project. Forking a projection on GitHub is really easy, you lot just need to hit the fork button. On your GitHub account, go to the repository y'all desire to fork. In this example, nosotros are referring to https://github.com/section-io/engineering-education. To the upper left corner, click on the fork push button and you will have successfully forked the repository.
Now you take a copy of the original repository on your GitHub account.
To start pushing, committing, and pulling, you need clone the repository yous have forked (on your GitHub account) and a have copy on your reckoner to commencement working on your contributions.
How to clone
Cloning using GitHub desktop
If you are using the GitHub desktop app, cloning a repository is every bit easy as pie. To become started, download GitHub desktop and install it into your computer and authenticate and configure it with your GitHub business relationship.
To make GitHub desktop piece of work easier, make certain you configure GitHub desktop with a text editor such as Visual Studio Code.
In one case that is done, your GitHub account will load on the GitHub desktop. To start cloning, navigate to File and then clone repository.
A clone window will popular up, you will be able to see the repositories in your business relationship, and cull the repository you want to clone.
Alternatively, y'all may use the URL from GitHub remote repository, paste on the clone box of GitHub desktop, and initiate cloning, select your preferred location of the cloned repository to your local computer and you lot are done.
Cloning using Git Bash
Git uses protocols to transfer data from a remote server to your local motorcar. The main used URL protocols include:
- SSH (Secure Crush) is an authenticated network protocol that needs credentials (a countersign) before making a connection to the hosting server. This is how a SSH link looks similar:
git://host.xz[:port]/path/to/repository.git Instance
git@github.com:section-io/engineering-education.git
- HTTP/HTTPS (Hyper text transfer protocol). The protocol of the web, about normally used for transferring spider web page HTML information over the Net. Git tin can exist configured to communicate over HTTPS with encoded data transmission.
http[s]://host.xz[:port]/path/to/repository.git/
In this article, we shall use SSH URL protocol using Git Bash to execute git commands. Still, to get started with Git Bash, y'all demand to do the following authentication.
First, download and install git, launch Git Fustigate and sign in to your GitHub account using the following commands.
NOTE: remember to press enter afterward any of the following
git config --global user.name "your github business relationship username" git config --global user.e-mail "your github account email" Run
git config --global user.proper noun to confirm username and
git config --global user.email to confirm email. To connect to your GitHub account you need to generate an SSH key. Run
ssh-keygen -t rsa -C "your github e-mail" Utilise the same email as your GitHub account email. Afterwards pressing enter on this command, you volition exist required to enter a password twice (this is not your GitHub password), enter any password of your choice, and when asked for confirmation renter the password again. An SSH code will exist generated and yous need it to cosign the protocol. To open the file created, run
notepad ~/.ssh/id_rsa.pub The file contains the SSH code, re-create the primal, and follow these instructions.
- On your GitHub account, go to settings
- Go to SSH and GPG keys
- And so new SSH key
- Enter the title "your key"
- Paste the copied SSH key in the big box
- Run control
ssh -T git@github.comto check if the configuration is ok
This should give you the following message Hello username! You've successfully authenticated, but GitHub does non provide shell access. Now you lot are good to go with SSH protocol
To start our clone run git clone (SSH URL)
Case
git clone git@github.com:kimkimani/applied science-teaching.git Output
Cloning into 'engineering-education'... Enter passphrase for central '/c/Users/kim/.ssh/id_rsa': remote: Enumerating objects: twenty, done. remote: Counting objects: 100% (20/xx), done. remote: Compressing objects: 100% (16/16), washed. remote: Full 9676 (delta 8), reused xiv (delta 4), pack-reused 9656 Receiving objects: 100% (9676/9676), 108.32 MiB | 116.00 KiB/s, done. Resolving deltas: 100% (5361/5361), washed. Updating files: 100% (785/785), washed. NOTE: brand sure the link y'all copy is SSH. And remember to use the password you used when generating the SSH key to make authentication for passphrase for key '/c/Users/you/.ssh/id_rsa\': If you do non enter the SSH password, you will meet the following output Delight brand sure you accept the correct access rights and the repository exists.
A re-create of the remote is now available on your local computer on the location yous entered on the Git Bash command with the folder proper name the same as the name of the repository in the remote repository. In case you want to have a different project binder use the clone command followed by the proper noun of your preferred folder.
git clone git@github.com:department-io/applied science-education.git folder-name When using a forked repo, the original repository volition regularly exist updated with commits. These commits are non direct updated to your repository, thus you need to regularly update your fork to go along it up to date with the original repository.
Updating a fork using GitHub web UI
The procedure is simple and clear. Go to your forked repository in your GitHub account, you will see the number of commits that the original repository has, and have and non been updated to your forked repository.
Click compare.
Use switch to base link.
If the switch to base is not available, use the dropdown to manually select the repositories to compare. When the comparing selections are correctly selected, you will be able to run across the commits that are not updated to your fork.
Continue to the green button and create a pull request.
Enter a title "updating my fork", annotate as well, and continue to create a pull request.
Roll to merge request.
Confirm merge.
And you are done, your fork is now updated successfully. The fork is updated on the remote and you now need to update the changes to your local repository. Go to your GitHub desktop and make certain your electric current repository you are working with is selected.
You lot will able to see a "pull origin". What this does is it pulls the remote changes to your local repository.
Click "pull origin" and your local repository will be updated and the same as the remote repository.
Summary
Updating a fork using Git Bash.
You accept successfully forked your interested repository. Nevertheless, you occasionally need to proceed information technology up to date with the original repository. The original repository is unremarkably referred to upstream by Git Bash control.
To update your fork with the upstream, you need to get the remote to your local repository and then that yous tin fetch available changes made in the original repository and push the changes to your local repository.
To get started navigate to your cloned repository (already on your local calculator) and open the project binder with Git Fustigate or open Git Fustigate and change the directory to point the cloned repository on your local storage. i.e.
cd ~/Documents/GitHub/technology-education Past default, your local repository is non directly linked to the original repository. Configure the remote upstream to be available locally.
OUTPUT
origin git@github.com:kimkimani/engineering science-education.git (fetch) origin git@github.com:kimkimani/engineering-educational activity.git (push) At this bespeak, but the original repository is linked (The remote repository that you forked from the original). Link your repository with the remote or the original repository.
git remote add together upstream <ssh url from the original repository> git remote add upstream git@github.com:section-io/technology-instruction.git Run
To confirm if your remote upstream is available on your local repository origin.
Output
git@github.com:kimkimani/applied science-teaching.git (fetch) origin git@github.com:kimkimani/engineering-teaching.git (push) upstream git@github.com:section-io/engineering-teaching.git (fetch) upstream git@github.com:section-io/engineering science-educational activity.git (push button) What you demand now is to fetch the changes/commits from the upstream
Output
Enter passphrase for key '/c/Users/kim/.ssh/id_rsa': remote: Enumerating objects: 139, done. remote: Counting objects: 100% (139/139), washed. remote: Compressing objects: 100% (66/66), done. remote: Total 131 (delta 88), reused 105 (delta 65), pack-reused 0 Receiving objects: 100% (131/131), 696.24 KiB | 11.00 KiB/s, washed. Resolving deltas: 100% (88/88), completed with 8 local objects. * [new branch] EngEd-template-thought-class -> upstream/EngEd-template-idea-form * [new branch] add together-department-home -> upstream/add-department-home * [new branch] accost-resolution-protocol -> upstream/address-resolution-protocol * [new co-operative] authors-link -> upstream/authors-link * [new branch] clustering-algorithms -> upstream/clustering-algorithms * [new branch] documentation -> upstream/documentation * [new branch] fix-topic-capitalization -> upstream/fix-topic-capitalization * [new branch] fixing-blank-author-pages -> upstream/fixing-blank-author-pages * [new co-operative] quaternary -> upstream/fourth * [new branch] introduction-web-assembly -> upstream/introduction-spider web-assembly * [new branch] knapsack -> upstream/knapsack * [new co-operative] brand-author-pages-piece of work -> upstream/make-writer-pages-work * [new branch] man-in-the-middle-attack -> upstream/man-in-the-middle-attack * [new branch] main -> upstream/master * [new branch] matplotlib-visualization-python -> upstream/matplotlib-visualization-python * [new co-operative] nodejs-backend-frontend -> upstream/nodejs-backend-frontend * [new branch] nodejs-cta-blocks -> upstream/nodejs-cta-blocks * [new co-operative] pr/54 -> upstream/pr/54 * [new branch] private-block-chain -> upstream/private-block-concatenation * [new branch] quality-checker-action -> upstream/quality-checker-action * [new branch] remove-articles -> upstream/remove-manufactures * [new branch] remove-unused-topic-pages -> upstream/remove-unused-topic-pages * [new branch] site-mapping -> upstream/site-mapping * [new co-operative] supervised-machine-learning -> upstream/supervised-machine-learning * [new branch] testing-author-folio-bare -> upstream/testing-writer-page-blank * [new branch] vlan-trunking -> upstream/vlan-trunking * [new branch] vm-vs-containers -> upstream/vm-vs-containers You have fetched the changes, commits, and branches that y'all need to merge to the head co-operative. Before doing the merge, brand sure you are updating this changes on your master.
git checkout upstream/master Output
Note: switching to 'upstream/master'. You are in 'detached Caput' land. You can await around, make experimental changes and commit them, and you can discard whatever commits you make in this country without impacting any branches by switching back to a branch. If you desire to create a new co-operative to retain commits you create, you may do and so (now or later) by using -c with the switch command. Example: git switch -c <new-branch-name> Or undo this operation with: git switch - Plow off this advice by setting config variable advice.detachedHead to fake Head is now at 1335657 Merge pull asking #272 from kimkimani/most-useful-NodeJs-packages OUTPUT bash Previous Head position was 1335657 Merge pull request #272 from kimkimani/about-useful-NodeJs-packages Switched to branch 'master' Your branch is up to date with 'origin/master
This points to the branch you are already on, in one case on the master co-operative, merge it with the upstream.
Output
Updating d9acac5..646cb27 Fast-forwards articles/huffman-coding-in-python/hero.jpg | Bin 0 -> 27160 bytes articles/huffman-coding-in-python/Code_Output.jpg | Bin 0 -> 16932 bytes articles/huffman-coding-in-python/alphabetize.dr. | 185 ++++++++++++++ articles/huffman-coding-in-python/optimaltree.jpg | Bin 0 -> 48468 bytes .../stripe-integration-react/api_test_keys.jpg | Bin 0 -> 160402 bytes articles/stripe-integration-react/dashboard.jpg | Bin 0 -> 147132 bytes articles/stripe-integration-react/final_output.jpg | Bin 0 -> 90318 bytes manufactures/stripe-integration-react/hero.jpg | Bin 0 -> 30446 bytes articles/stripe-integration-react/alphabetize.md | 281 +++++++++++++++++++++ articles/stripe-integration-react/paymentflow.jpg | Bin 0 -> 71723 bytes manufactures/stripe-integration-react/paywithcard.jpg | Bin 0 -> 65169 bytes 11 files changed, 466 insertions(+) create mode 100644 articles/huffman-coding-in-python/Code_Output.jpg create mode 100644 manufactures/huffman-coding-in-python/hero.jpg create mode 100644 articles/huffman-coding-in-python/index.md create mode 100644 articles/huffman-coding-in-python/optimaltree.jpg create mode 100644 articles/stripe-integration-react/api_test_keys.jpg create way 100644 articles/stripe-integration-react/dashboard.jpg create mode 100644 articles/stripe-integration-react/final_output.jpg create mode 100644 manufactures/stripe-integration-react/hero.jpg create mode 100644 manufactures/stripe-integration-react/index.md create mode 100644 articles/stripe-integration-react/paymentflow.jpg create fashion 100644 articles/stripe-integration-react/paywithcard.jpg If the upstream and master accept no changes to merge , Already up to appointment. message will be printed on your Git Bash. These changes are committed to your local repository,
Output
Switched to branch 'master' Your co-operative is alee of 'origin/primary' by 25 commits. (employ "git push button" to publish your local commits) Push these commits to publish them to your remote repository.
And you are washed. Refresh your remote repository, information technology will be up to date with the upstream.
We take forked, cloned, our repository is up to engagement, plus we are ready to work on our contributions. Before you submit your contributions, make sure you lot work on your changes and your content is well formatted ready to make a pull request.
Submit contributions using GitHub desktop
For convenience, open GitHub and open up the repository with your preferred text editor.
If yous are using Visual Studio Code, your cloned binder should look similar to this
Since we are trying to make our contributions to Section, navigate to the articles folder.
Create a folder to piece of work with.
Add together your contributions (i.e. index.md, hero epitome, and other media where necessary).
When you are done adding all your content, y'all now demand to commit the changes to your remote GitHub repository. Launch your GitHub desktop and you volition be able to see the changes yous have added.
It is now simple from here, create a branch that will have your changes.
Since we take our changes ready, we need to merge these changes to the co-operative we take created. i.eastward. "the changes on your binder and your piece of work in progress volition follow to the new branch" and click switch to co-operative.
Publish the branch to your remote GitHub account and make sure you lot add together a commit message as the summary.
Your branch content is on your remote GitHub repository, and you need to create a pull request to the origin repository to contribute your changes.
The create a pull request push volition redirect y'all to your GitHub account where you now need to create a pull request. Make certain your title is relevant to the content you want to publish. Write a comment in the comment box with brief details of your content.
In one case the pull request button is hit, you are washed, you accept submitted your contributions successfully.
Expect for your content to be reviewed and if any farther changes are needed, a comment will be left by the reviewer suggesting possible changes y'all should make under your pull. Make your edits on your text editor and make a commit to update the changes and remember to have a summary of the commit you lot are making for better referencing.
Submit contributions using Git fustigate.
Since y'all have a clone available on your local computer, kickoff working on you contributions using a text editor. Format your content co-ordinate to the guidelines of the original repository.
Once you are done and ready to publish the content, it is advisable to push your changes under a branch and non to the master repository. This will assist you to piece of work and contribute changes under different topics without branch or merge conflicts.
When the content (topic) is ready, create a branch and make sure you lot checkout on the branch equally information technology volition hold all your changes you lot are working on. Open GitHub local directory on Git Fustigate.
If you run
OUTPUT
All the branches you lot have created will exist printed, in this instance we accept master branch, which is the current checkout. Create a new branch, with the name relevant to the topic or the content you want to push.
git co-operative <branch name> git branch my-first-contributions The new branch has been created. To confirm if the new branch was actually created, run
OUTPUT
* chief my-first-contributions Checkout the new co-operative you lot accept created
git checkout <branch proper noun> git checkout my-commencement-contributions OUTPUT
Switched to co-operative 'my-first-contributions' All the bachelor changes that you have made will be directed to the branch on the checkout. To check the changes you have created/modified run
OUTPUT
On branch my-first-contributions Untracked files: (use "git add together <file>..." to include in what will be committed) articles/new-folder-name/ nil added to commit but untracked files present (use "git add" to track) These changes are available on the local repository, and you need to make them set to be pushed to your remote. To do this, run
git add . (brand sure the fullstop after git add together is included) Run to ostend the changes are prepare.
git condition
On branch my-get-go-contributions Changes to be committed: (use "git restore --staged <file>..." to unstage) new file: articles/new-folder-name/hero.jpg new file: articles/new-folder-proper noun/index.md Your file changes will be highlighted greenish, meaning ready to be published to remote. These changes are ready to be committed
git commit -m "my first contribution" [my-first-contributions 6b5e391] my first contribution 2 files changed, 1 insertion(+) create mode 100644 manufactures/new-folder-proper name/hero.jpg create mode 100644 articles/new-folder-name/index. Push to the branch
git push origin my-first-contributions Your content is at present on your remote forked repository. To share your contributions to the team, you demand to make a pull request. Go to your GitHub account, under your forked repository.
Click the compare and pull request push button.
And you are done. Wait for your content to be reviewed, brand changes where necessary and your pull request will be merged to the squad project.
Note: every time you lot are making new contributions, ensure your remote fork and the local repository are up to appointment.
Decision
The outputs highlighted on this commodity may not directly lucifer to what will be printed to your Git Bash every bit that depend on the commits already published when making a clone or updating a clone likewise equally the file changes you have fabricated.
References
GitHub with SSH
GitHub authentifications
How to clone GitHub repository
Using Git
Problems and pull requests
Troubleshoot SSH
GitHub workflow management
GitHub desktop
Best Text Editors
Peer Review Contributions by: Nadiv Gold Edelstein
Source: https://www.section.io/engineering-education/how-to-sync-and-update-a-forked-repo/
0 Response to "Update Git Repo Without Password Again"
Post a Comment