gpt4 book ai didi

linux - 自定义 bash_profile 中的 git 命令以自动索引到下一个分支

转载 作者:太空宇宙 更新时间:2023-11-04 04:52:01 28 4
gpt4 key购买 nike

下面是我的自定义 gitp 命令,效果很好(带有伪代码)。我想通过让它自动自动索引并 checkout 到新分支来添加到脚本中。希望有一个命令行 bash 高手能够解决这个问题! :)

    previous_branch_num = 0;
gitp() {
git add -A &&
git commit -m "${1?'Missing commit message'}" &&
git push
git checkout -b "v{++previous_branch_num}" //<--psuedo code
}

最佳答案

简单地说:

#!/bin/bash

previous_branch_num=0

gitp() {
git add -A &&
git commit -m "${1?'Missing commit message'}" &&
git push
git checkout -b "v$((++previous_branch_num))" # <-- real code
}

关于linux - 自定义 bash_profile 中的 git 命令以自动索引到下一个分支,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55518505/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com