Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
4.2 kB
1
Indexable
Never
Windows PowerShell
(C) Корпорация Майкрософт (Microsoft Corporation). Все права защищены.

Попробуйте новую кроссплатформенную оболочку PowerShell (https://aka.ms/pscore6)

(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23> git clone git clone https://gitlab.com/vivaronka/mlops_sber_23.git
fatal: Too many arguments.

usage: git clone [<options>] [--] <repo> [<dir>]
                                                
    -v, --verbose         be more verbose       
    -q, --quiet           be more quiet
    --progress            force progress reporting
    --reject-shallow      don't clone shallow repository
    -n, --no-checkout     don't create a checkout
    --bare                create a bare repository
    --mirror              create a mirror repository (implies bare)
    -l, --local           to clone from a local repository
    --no-hardlinks        don't use local hardlinks, always copy
    -s, --shared          setup as shared repository
    --recurse-submodules[=<pathspec>]
                          initialize submodules in the clone
    --recursive ...       alias of --recurse-submodules
    -j, --jobs <n>        number of submodules cloned in parallel
    --template <template-directory>
                          directory from which templates will be used
    --reference <repo>    reference repository
    --reference-if-able <repo>
                          reference repository
    --dissociate          use --reference only while cloning
    -o, --origin <name>   use <name> instead of 'origin' to track upstream
    -b, --branch <branch>
                          checkout <branch> instead of the remote's HEAD
    -u, --upload-pack <path>
                          path to git-upload-pack on the remote
    --depth <depth>       create a shallow clone of that depth
    --shallow-since <time>
                          create a shallow clone since a specific time
    --shallow-exclude <revision>
                          deepen history of shallow clone, excluding rev
    --single-branch       clone only one branch, HEAD or --branch
    --no-tags             don't clone any tags, and make later fetches not to follow them
    --shallow-submodules  any cloned submodules will be shallow
    --separate-git-dir <gitdir>
                          separate git dir from working tree
    -c, --config <key=value>
                          set config inside the new repository
    --server-option <server-specific>
    -4, --ipv4            use IPv4 addresses only
    -6, --ipv6            use IPv6 addresses only
    --filter <args>       object filtering
    --also-filter-submodules
                          apply partial clone filters to submodules
    --remote-submodules   any cloned submodules will use their remote-tracking branch
    --sparse              initialize sparse-checkout file to include only files at root
(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23> git clone https://gitlab.com/vivaronka/mlops_sber_23.git
remote: Enumerating objects: 26, done.
remote: Total 26 (delta 5), reused 0 (delta 0), pack-reused 20
(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23> git branch
error: pathspec 'имя_ветки' did not match any file(s) known to git
(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23> git checkout data-preparation
error: pathspec 'data-preparation' did not match any file(s) known to git
(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23> git branch -r
(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23> git init
Initialized empty Git repository in C:/Users/vivar/PycharmProjects/mlops_sber_23/.git/
(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23> git branch -r
(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23> git checkout -b data-preparation origin/data-preparation
fatal: 'origin/data-preparation' is not a commit and a branch 'data-preparation' cannot be created from it
(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23> git branch -r                                           
(venv) PS C:\Users\vivar\PycharmProjects\mlops_sber_23>