git-gui

Why isn't my tag listed when I checkout with Git GUI?

依然范特西╮ 提交于 2019-11-27 17:00:31
问题 I have a local Git repository which contains three annotated tags: v0.1.0 , v0.1.1 , and v0.1.2 . When I view my project's history with gitk ( Repository → Visualize master's history ), I can see each tag assigned to the proper commit. However, when I try to checkout my tags in Git GUI ( Branch → Checkout... → Tags ), the tag for v0.1.1 doesn't appear. When I went to check each tag in gitk, I noticed that the tag details were slightly different. The details for v0.1.0 and v0.1.2 listed them

How to skip “Loose Object” popup when running 'git gui'

我怕爱的太早我们不能终老 提交于 2019-11-27 10:32:42
When I run 'git gui' I get a popup that says This repository currently has approximately 1500 loose objects. It then suggests compressing the database. I've done this before, and it reduces the loose objects to about 250, but that doesn't suppress the popup. Compressing again doesn't change the number of loose objects. Our current workflow requires significant use of 'rebase' as we are transitioning from Perforce, and Perforce is still the canonical SCM. Once Git is the canonical SCM, we will do regular merges, and the loose objects problem should be greatly mitigated. In the mean time, I'd

How to upload a project to Github

梦想与她 提交于 2019-11-27 02:28:59
After checking this question I still have no idea how to get a project uploaded to my Git Hub repository. I'm new to Git Hub and I have no idea what to do. I created a Repository but i want to upload my project to it. I've looked on the repository page for an upload button of some kind but I haven't seen anything of the sort. I've looked at the links provided so far but I'm still getting no where. They mention command line, is that Windows command line or Git Bash? Because I can't get either to do anything. I also tried using Git GUI but when I select the folder I want it says that it's not a

How to upload a project to Github

隐身守侯 提交于 2019-11-26 10:04:43
问题 After checking this question I still have no idea how to get a project uploaded to my Git Hub repository. I\'m new to Git Hub and I have no idea what to do. I created a Repository but i want to upload my project to it. I\'ve looked on the repository page for an upload button of some kind but I haven\'t seen anything of the sort. I\'ve looked at the links provided so far but I\'m still getting no where. They mention command line, is that Windows command line or Git Bash? Because I can\'t get

How do I remove files saying “old mode 100755 new mode 100644” from unstaged changes in Git?

孤者浪人 提交于 2019-11-26 03:24:47
问题 For some reason, when I initially did a pull from the repository for a git project of mine, I got a ton of files in my working copy that have no discernible changes made to them, but keep showing up in my unstaged changes area. I\'m using Git Gui on Windows xp, and when I go to look at the file to see what has changed. All I see is: old mode 100755 new mode 100644 Does anyone know what this means? How can I get these files out of my list of unstaged changes? (Very annoying to have to go

How do I remove files saying “old mode 100755 new mode 100644” from unstaged changes in Git?

落爺英雄遲暮 提交于 2019-11-26 02:22:49
For some reason, when I initially did a pull from the repository for a git project of mine, I got a ton of files in my working copy that have no discernible changes made to them, but keep showing up in my unstaged changes area. I'm using Git Gui on Windows xp, and when I go to look at the file to see what has changed. All I see is: old mode 100755 new mode 100644 Does anyone know what this means? How can I get these files out of my list of unstaged changes? (Very annoying to have to go through 100's of files, just to pick out files I've recently edited and want to commit). Amber That looks