Tag: git
All the articles with the tag "git".
-
What is pubspec.lock for
It is good practice to version the pubspec.lock file in a Flutter project. The pubspec.lock file contains an accurate record of the versions of the dependencies (packages) used in your Flutter project. By versioning this file, you ensure that your pr...
-
git rebase -Xtheirs and -Xours: Resolving Conflicts Automatically
How -Xtheirs and -Xours work in git rebase — and why they mean the exact opposite of what you'd expect.
-
The reversed .gitignore
The .gitignore is there to prevent files from ending up in git's version management that have no business being there. You can find them in most repositories in the world. Creating these is a tedious and sometimes tricky task. For example, files that...