Lessons Learned from File Operations

PowerShell vs Unix Commands

When working with file operations in PowerShell, there are several important differences from Unix commands that need to be considered:

Command Chaining

Directory Creation

File Movement

Git Operations

When moving files around in a git repository, there are several important considerations:

Checking Status

Always check git status before committing to see:

Staging Changes

When moving files, you need to stage both:

Commit Messages

Write descriptive commit messages that include:

Example of a good commit message:

Move files from raw_notes to notes directory: moved OSI Model.md and scp.md to root, Linux and Android files to their respective directories

Best Practices

  1. Always check for existing files in the destination before moving
  2. Create directory structure before moving files into it
  3. Use proper quoting around paths with spaces
  4. Use PowerShell-specific commands instead of Unix-style commands
  5. Review git status carefully before committing
  6. Write descriptive commit messages
  7. Stage both new and deleted files when moving files

Common Pitfalls

  1. Forgetting to check for existing files in destination
  2. Not handling spaces in file/directory names properly
  3. Using Unix commands in PowerShell
  4. Not staging both new and deleted files
  5. Writing vague commit messages
  6. Not creating directory structure before moving files
  7. Not checking git status before committing