.Gitignore Issue in laravel
I am trying to put session and logs directories into .gitignore file in my Laravel 10 project, but they are not ignored and are still tracked. I have tried to delete the folders and create them again, but that didn’t…
I am trying to put session and logs directories into .gitignore file in my Laravel 10 project, but they are not ignored and are still tracked. I have tried to delete the folders and create them again, but that didn’t…
I have a Visual Studio solution that includes 12 projects. The code is hosted on Azure DevOps using git. I'll admit I'm not an expert of git. I've created some branches from the "master" branch. I kept working normally both…
I try to use pre-commit on VSCode. I installed ruff, black, mypy and flake8 using poetry. Pre-commit-config.yaml default_language_version: python: python3.10 repos: - repo: local hooks: - id: ruff name: ruff entry: ruff language: python types: [python] args: [ --fix, --config=app/pyproject.toml…
Im beginner in programming and I am writing a project in vs code and trying to commit new files to synchronize with my github. But 10,000 files in the directory are writing to me C:Usersgerga.DESKTOP-BSQOQP7 . I tried to do…
I'm working on a wordpress plugin as part of a larger project. The wordpress install sits in a wordpress folder, I want to ignore all of the wordpress install except the specific plugin that I'm working on, so everything in…
I am converting a Classic Azure build pipeline into a YAML pipeline and I have this step defined: parameters: RestoreBuildProjects: '**/*.csproj' buildConfiguration: 'Any CPU' TestProjects: '**/*Tests/*.csproj' stages: - stage: Build condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest')) jobs: - job: Build_Application continueOnError: false…
I was trying to implement github actions when PR is merged. It also had a part of workflow dispatch. name: Deploy to DEV on: push: branches: - dev paths-ignore: - '.github/**' workflow_dispatch: jobs: Deploy-to-Dev: if: github.event.pull_request.merged == true runs-on: ubuntu-22.04…
This feature is very annoying to me when I an going through the file history and looking for a keyword throughout. Is there a way to disable this ? Sorry, I can't find the correct keywords / settings for this.…
I was working in VS Code and accidentally rolled back the Flutter repository, which has caused Flutter to become unusable in my development environment. Now, when I try to use Flutter commands or run Flutter projects, nothing happens. I've tried…
I started a Visual Studio project. To upload it to GitHub, I ran git add . but I got this error: open(".vs/projectdesign/FileContentIndex/362d2a41-e466-4aa4-a3cc-cb6615d99b12.vsidx"): Permission denied error: unable to index file '.vs/projectdesign/FileContentIndex/362d2a41-e466-4aa4-a3cc-cb6615d99b12.vsidx' fatal: adding files failed My repository is public if it…