git flow init
之后,如何删除git flow
模型?
甚至,我从.git/config
文件中删除了相关配置。
$ git flow init
# force reset
$ git flow init -f
已从.git / config文件中删除以下内容。
[gitflow "branch"]
master = master
develop = develop
[gitflow "prefix"]
feature = feature/
release = release/
hotfix = hotfix/
support = support/
versiontag =
感谢。
答案 0 :(得分:45)
您也可以从命令行执行@Peter所说的内容!
这些命令会删除与gitflow相关的git配置文件的所有部分。
git flow init
然后你可以像往常一样重新启动gitflow。
import java.util.*;
import java.lang.String;
import java.lang.Character;
public class password {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Please enter a Password: ");
String password = input.next();
if (isValid(password)) {
System.out.println("Valid Password");
} else {
System.out.println("Invalid Password");
}
}
public static boolean isValid(String password) {
if (password.length() < 8) {
return false;
} else {
for(int i = 0; i <= password.length() - 1; i++) {
char c = password.charAt(i);
if (!Character.isLetter(c) | !Character.isDigit(c)) {
return false;
}
}
}
return true;
}
}
答案 1 :(得分:30)
如果从配置中删除了这些部分,则对git-flow的任何引用都将消失。
实际上并不需要删除任何东西,git-flow模型就是这样,它是一个模型。您始终可以使用标准git命令。
git-flow添加到你的配置中,只有git-flow软件会使用,而不是git本身。