git diff --name-status bug-fix137 develop
http://stackoverflow.com/questions/822811/showing-which-files-have-changed-between-two-revisions
http://stackoverflow.com/questions/822811/showing-which-files-have-changed-between-two-revisions
Development, Software, Hardware, System, Network, API, WebService, Programmation and co..
git, util-linux and wget (with those three being packages that can be selected during installation). Then simply run this command from a Cygwin shell in your $HOME:$ wget -q -O - --no-check-certificate https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | bash
git config --global url."https://".insteadOf git://
Then take a look at your global configuration using :git config --list
You'll see the following line in the output:
url.https://.insteadof=git://
$ export INSTALL_PREFIX=$USERPROFILE/bin
# Run wget command above
$PATH$ git flow init
util-linux package using the Cygwin setup.$ sed -i 's/\n\r/\n/mg' /usr/local/bin/git-flow*
$ sed -i 's/\n\r/\n/mg' /usr/local/bin/gitflow-*
MSysGit
Download and install getopt.exe from the util-linux package into C:\Program Files\Git\bin. (Only getopt.exe, the others util-linux files are not used). Also installlibintl3.dll and libiconv2.dll from the Dependencies packages (libintl and libiconv), into the same directory.
Clone the git-flow sources from GitHub:
$ git clone --recursive git://github.com/nvie/gitflow.git
$ cd gitflow
Run the msysgit-install script from a command-line prompt (you may have to run it with "Full Administrator" rights if you installed msysgit with its installer, and ensure you're running from a Windows command prompt, not MINGW):
C:\gitflow> contrib\msysgit-install.cmd
In Git bash create a symbolic link for git-flow so that you can actually use the $ git flow command from any location.
$ ln -s /C/gitflow/git-flow git-flow
Source : https://github.com/nvie/gitflow/wiki/Windowsgit config --get remote.origin.url
git remote show origin
git clone (from github, or any source repository for that matter) the default name for the source of the clone is "origin". Using git remote show will display the information about this remote name.