How to do a "git pull"
See original GitHub issueHello,
I realize I missing something stupid, and I am gonna feel “bad in the morning” for asking this,
but I can’t seem to find how I can perform a plain simple git pull
in the Ungit GUI.
Thanks.
Issue Analytics
- State:
- Created 6 years ago
- Comments:7
Top Results From Across the Web
Git Pull | Atlassian Git Tutorial
The git pull command is used to fetch and download content from a remote repository and immediately update the local repository to match...
Read more >Git Pull: Tutorial with Detailed Examples - CloudBees
Using git pull · First, run git status. Git will tell you the repository is clean, nothing to worry about. · Then run...
Read more >git-pull Documentation - Git
More precisely, git pull runs git fetch with the given parameters and then depending on configuration options or command line flags, will call...
Read more >How To Use Git Pull | W3Docs Online Git Tutorial
The git pull command fetches and downloads content from the remote repository and integrates changes into the local repository. The git pull command...
Read more >Git Pull | Pull Request - Javatpoint
As we mentioned earlier in this topic, how to commit a file to use git pull. Select the option "create a new branch...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hmm… Interesting, I did not think about that option. It would be equivalent to
git fetch && git merge
which is, in turn, equivalent togit pull
. But I am interested in a single GUI button/thingy/clicky/whatever that performs agit pull
.Personally I like the idea that you know what is happening, fetch + merge. Doing pull without any arguments can cause many problems with merges, especially for new users.