# Knowledge Check: Git and GitHub

1. **In git, the repository on your device is known as a Remote.**
    
    * True
        
    * <mark>False</mark>
        
2. **In git, what is the operation used to initially download a repository?**
    
    * pull
        
    * <mark>clone</mark>
        
    * push
        
3. **The staged area is used to prepare all your files and changes for committing.**
    
    * <mark>True</mark>
        
    * False
        
4. **Once a file is committed using the git commit operation, it is available on all remote repositories.**
    
    * True
        
    * <mark>False</mark>
        
5. **Which of the following commands can be used to inspect your current changes before committing?**
    
    * git log
        
    * <mark>git diff</mark>
        
    * git add
        
6. **True or False: You can use forking to contribute to another person's repository, or that of another organization, by creating your own copy.**
    
    * <mark>True</mark>
        
    * False
