Difference between revisions of "Pathspec"

From wikieduonline
Jump to navigation Jump to search
 
(9 intermediate revisions by 3 users not shown)
Line 11: Line 11:
  
 
  [[git checkout]] main
 
  [[git checkout]] main
  error: pathspec 'main' did not match any file(s) known to git
+
  error: pathspec 'main' [[did not match any file(s) known to git]]
 +
 
 +
[[git checkout -m]] "my first branch"
 +
error: pathspec 'my first branch' did not match any file(s) known to git
  
 
  [[git checkout]] your-branch
 
  [[git checkout]] your-branch
  error: pathspec 'git' did not match any file(s) known to git
+
  Note: switching to 'remotes/origin/your-branch'.
  error: pathspec 'branch' did not match any file(s) known to git
+
  error: pathspec '[[remotes/origin/]]your-branch' did not match any file(s) known to git
+
You are in '[[detached HEAD]]' state. You can look around, make experimental
 +
changes and commit them, and you can discard any commits you make in this
 +
state without impacting any branches by switching back to a branch.
 +
 +
  If you want to create a new branch to retain commits you create, you may
 +
do so (now or later) by using -c with the switch command. Example:
 +
 +
  git switch -c <new-branch-name>
 +
   
 +
Or undo this operation with:  
 +
 +
  git switch -
 +
 +
Turn off this advice by setting config variable [[advice.detachedHead]] to false
 +
 +
[[HEAD]] is now at 7caef6a60 Add doc
 +
 
 +
== Related ==
 +
* <code>[[refname]]</code>
  
==See also==
+
== See also ==
*{{git}}
+
* {{git checkout}}
 +
* {{pathspec}}
  
 
[[Category:Computer]]
 
[[Category:Computer]]

Latest revision as of 12:42, 23 June 2023

╷
│ Error: Failed to download module
│
│ Could not download module "parameters" (main.tf:257) source code from "github.com/your-project/your-module/parameters":
│ error downloading 'https://github.com/your-project/terrafo-infra.git': /usr/bin/git exited with 1: error: pathspec 'master' did not
│ match any file(s) known to git
│
╵
git checkout main
error: pathspec 'main' did not match any file(s) known to git
git checkout -m "my first branch"
error: pathspec 'my first branch' did not match any file(s) known to git
git checkout your-branch
Note: switching to 'remotes/origin/your-branch'. 

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:

  git switch -c <new-branch-name> 

Or undo this operation with: 

  git switch - 

Turn off this advice by setting config variable advice.detachedHead to false

HEAD is now at 7caef6a60 Add doc

Related[edit]

See also[edit]

Advertising: