git push的默认参数

时间:2019-06-21 07:22:17

标签: git gitlab

我需要做// INSIDE YOUR RENDER METHOD const cardItems = this.state.cards.map((item,index) => <CardComponent key={index}> {item.name} // Here you can access and display the fields of your documents </CardComponent> ); return( <SomeContainerComponent> {cardItems} </SomeContainerComponent> ); ,所以我不会触发大量的gitlab管道。 (当它们变大时,我将它们移到预定的位置。)

是否可以通过〜/ .git / config设置项目,因此默认情况下此参数为启用状态。

1 个答案:

答案 0 :(得分:5)

您可能想看看别名: https://git-scm.com/book/en/v2/Git-Basics-Git-Aliases

这样,您可以指定其他命令,例如pushs
git config --local alias.pushs 'push origin -o ci.skip'

然后您可以输入git pushs