Skip to content

Commit

Permalink
Update TFVC
Browse files Browse the repository at this point in the history
  • Loading branch information
anveshmuppeda committed May 3, 2024
1 parent 65ee5eb commit cd07938
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions TFVC/README.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Team Foundation Version Control (TFVC) and Git

# Azure DevOps TFVC vs Git - Keyword Comparison

| Feature/Concept | TFVC | Git |
|-----------------|---------------------------|-------------------------------|
| **Repository** | Team Project Collection | Repository or Repo |
| **Branch** | Branch | Branch |
| **Check-out** | Check-out | Check-out |
| **Check-in** | Check-in | Commit |
| **Changeset** | Changeset | Commit |
| **History** | Changeset history | Commit history |
| **Merge** | Merge | Merge |
| **Conflict** | Merge conflict | Merge conflict |
| **Lock** | Exclusive lock | No lock (concurrent editing) |
| **Clone** | Get latest version | Clone |
| **Pull** | Get latest version | Pull |
| **Push** | Check-in (with pending changes) | Push |
| **Pull Request**| Shelve Set | Pull Request |
| **Remote** | N/A | Remote |
| **Fetch** | N/A | Fetch |
| **Commit ID** | Changeset ID | Commit ID (SHA-1 hash) |
| **Tag** | Label | Tag |
| **Repository URL**| Repository URL | Repository URL |
| **Fork** | N/A | Fork |
| **Stash** | Shelve changes | Stash changes |

0 comments on commit cd07938

Please sign in to comment.