From 0da318e790a7489154f1ab9383065400cd2cb22e Mon Sep 17 00:00:00 2001 From: Catfriend1 Date: Mon, 2 Sep 2019 13:52:29 +0200 Subject: [PATCH] Create git_fetch_branch.cmd --- git_fetch_branch.cmd | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 git_fetch_branch.cmd diff --git a/git_fetch_branch.cmd b/git_fetch_branch.cmd new file mode 100644 index 000000000..b289490fb --- /dev/null +++ b/git_fetch_branch.cmd @@ -0,0 +1,8 @@ +@echo off +REM +REM Syntax: +REM git_fetch_branch.sh [BRANCH_NAME_TO_FETCH] +REM +git fetch --all +git fetch origin "%1":"%1" +git checkout "%1"