This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
echo Please provide git project old repo : | |
read oldRepo | |
echo Please provide git project new repo : | |
read newRepo | |
echo Please provide git project name : | |
read projectName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
echo Please provide svn project repo : | |
read svnRepo | |
echo Please provide git project repo : | |
read gitRepo | |
echo Please provide svn project name : | |
read projectName |