Reputation: 1
I cloned it again and set up Gitflow to change the branch from main to development, but the file is not visible.
After deleting the file, I cloned it again and set up Gitflow again, but it was the same. Can we try again? Or is there another way?
Upvotes: 0
Views: 26
Reputation: 69
It sounds like there might be an issue with the cloned repository or Gitflow setup. Try these step,
development
) using git branch
.git fetch --all
to make sure all branches and files are up to date.git checkout development
to ensure you're on the right branch.git status
to see if the file is untracked or ignored.If the issue persists there may be a problem with the repository itself.
Upvotes: 0