For this release, I am working on an issue for an RPG game that uses JavaScript React. This project requires a global tracking of all of the stats, such as monster kills (by monster type), player death count, and high-score tracker. I will be working to implement these features into the project.
There are many commands on git that new developers do not know of. These commands can make working in open source projects, or group projects easier to understand. Of all these commands, I will be going through two that most new developers do not know of. Log While working in large groups, there are many commits that you or others may have done within a repository. Using 'log,' you can view the history of all the changes made. Basic command: git log With this basic command, you can view the commit id , author of the commit, date of the revision, and the details the user wrote. git log --follow filename This command allows you to follow the commit history of a single file. It is useful for working in big groups as you can follow a file that you contributed to, instead of viewing the whole repository. Simply replace ' filename ' with the directory of the file you want to view. git log - number git log...
Comments
Post a Comment