You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Graphite combines this workflow into a useful command that I find myself using frequently:
gt create --all --message "commit message"# the --all flag is defined as: Stage all unstaged changes before creating the branch, including to untracked files.
It would be cool if st provided the same funcitonality:
st create --all --message "commit message"
In the current version of st, I need to provide 4 commands to perform the same action:
st create my-branch
git add .&& git commit -m "my commit"
st submit # some additional button clicks here too
The text was updated successfully, but these errors were encountered:
A common git workflow goes something like this:
Graphite combines this workflow into a useful command that I find myself using frequently:
It would be cool if
st
provided the same funcitonality:st create --all --message "commit message"
In the current version of
st
, I need to provide 4 commands to perform the same action:The text was updated successfully, but these errors were encountered: