mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-20 18:55:23 +02:00
693 B
693 B
jj git init
Create a new Git backed Jujutsu repo. Note: Unless
--colocate
is used, it is not a valid Git repository andgit
commands can't be used on it. More information: https://jj-vcs.github.io/jj/latest/cli-reference/#jj-git-init.
- Create a new Git backed repo in the current directory:
jj git init
- Create a new Git backed repo in the given directory:
jj git init {{path/to/directory}}
- Initialize the Jujutsu repository as a valid Git repository (allowing the use of both
jj
andgit
commands in the same directory):
jj git init --colocate
- Initialize the Jujutsu repository backed by an existing Git repository:
jj git init --git-repo {{git_repo}}