Github and Git - what do you need to work with the Git terminal in win7?

I want to collaborate with a team that uses git on their personal server. What do I need to push the server out of there? I got win7, what do I need? I found the upload on github and on git .

+3


source to share


1 answer


I would recommend the last one from git-for-windows ( which will replace the old msysgit shortly , and will include the more recent bash ):

  • Uncompress PortableGit-2.4.5.1-4th-release-candidate-64-bit.7z.exe anywhere.
  • add C:\path\to\PortableGit-2.4.5.1-4th-release-candidate-64-bit\bin

    to%PATH%

  • use <PortableGit-2.4.5.1-4th-release-candidate-64-bit>\git-cmd.bat

    (regular CMD session) or <PortableGit-2.4.5.1-4th-release-candidate-64-bit>\git-bash.bat

    (unix shell session)
  • A type:

    git config --global user.name <yourUsername>
    git config --global user.email <yourEmail>
    git config --global core.autocrlf false
    
          



And you will go well.
If you have access to this private server, you can clone it (ssh or https url).

+7


source







All Articles