Is there a graphical way for git to create / delete individual files?

I am looking for a graphical interface for writing and stamping files in git, with the ability to do this for individual modified files. I know there is a command line way to do this, see here , but I'm looking for a graphical way. I don't care about stitching individual files, but more about how to pop up / apply. I am running on Windows 7.

+4
source share
4 answers

The documentation git stashsays:

git stash, , . HEAD.

1 , - ( , ).

, ( , ), ( , ), . , .

, .


1git stash save --patch, HEAD , . , .

:

git, Perforce, stash "shelve", , - . , gitextensions , , .

, , HEAD , ( ). ; stashes () .

, git stash create . ", , " ( ).

+2

, Stash "Git GUI" <USER HOME directory>\.gitconfig.

[guitool "Stash/show"]
  cmd = git stash show -p
[guitool "Stash/list"]
  cmd = git stash list
[guitool "Stash/pop"]
  cmd = git stash pop
[guitool "Stash/drop"]
  cmd = git stash drop
  confirm = yes

( , - , , Git "add" ):

[guitool "Stash"]
  cmd = git stash

(, "stash" , .)

Git GUI Tools- > Add.

Stashing , , .

+5
+3

'git gui', git

-1

All Articles