We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dce6816 commit 8481f8cCopy full SHA for 8481f8c
README.md
@@ -286,6 +286,9 @@ g.branch('new_branch').delete
286
g.branch('existing_branch').checkout
287
g.branch('master').contains?('existing_branch')
288
289
+# delete remote branch
290
+g.push('origin', 'remote_branch_name', force: true, delete: true)
291
+
292
g.checkout('new_branch')
293
g.checkout('new_branch', new_branch: true, start_point: 'master')
294
g.checkout(g.branch('new_branch'))
@@ -339,6 +342,9 @@ g.repack
339
342
g.push
340
343
g.push(g.remote('name'))
341
344
345
346
347
348
g.worktree('/tmp/new_worktree').add
349
g.worktree('/tmp/new_worktree', 'branch1').add
350
g.worktree('/tmp/new_worktree').remove
0 commit comments