忽略一些分支git svn fetch

时间:2017-08-03 11:21:16

标签: git svn git-svn

我正在使用svn存储库,当我运行git svn fetch命令时收到错误:

branch_name

我理解它,因为名称~titanbig\-?\d+\.ru实际上类似于<TouchableOpacity key = {index} onPress = {() => this._onPress(key)} style = {containerStyle.container}> <View> <Icon name = {Platform.OS === "ios" ? "ios-checkmark-outline" : "md-checkmark"} size = {24} style = {{ paddingLeft: 10, color: "#108EE9"}} /> <Text style = {this._createStyleText(key)}> {key} </Text> </View> </TouchableOpacity> const containerStyle = StyleSheet.create({ container: { padding: 8, backgroundColor: "#ffffff", }, }); const textStyle = StyleSheet.create({ unselectedText: { paddingLeft: 45, color: "#000000", fontWeight: "normal", }, }); - 包含坏符号 - 我该如何解决这个问题?也许有一些选项可以跳过这些糟糕的分支?

1 个答案:

答案 0 :(得分:0)

使用--ignore-paths开关或svn-remote.<name>.ignore-paths配置选项。你可以给那个指定要忽略的路径的perl正则表达式。有关详细信息,请参阅https://git-scm.com/docs/git-svn

相关问题