gitのプル - から取り出し、別のリポジトリまたはローカルブランチ
git pull [options] [<repository> [<refspec>…]]
のgit-プッシュとの統合 - 更新リモート参考文献と一緒に関連付けられているオブジェクト
git push [--all | --mirror | --tags] [--follow-tags] [--atomic] [-n | --dry-run] [--receive-pack=<git-receive-pack>]
[--repo=<repository>] [-f | --force] [-d | --delete] [--prune] [-v | --verbose]
[-u | --set-upstream] [--push-option=<string>]
[--[no-]signed|--signed=(true|false|if-asked)]
[--force-with-lease[=<refname>[:<expect>]]]
[--no-verify] [<repository> [<refspec>…]]
参考
https://git-scm.com/docs/git-pull
https://git-scm.com/docs/git-push
あなたのケースでは
git pull origin feature/style
git push origin feature/style
あなたは 'のgit status'コマンドを発行し、出力は何ですか? –
@ PubuduDodangodaと書かれています: ブランチフィーチャー/スタイル ブランチは 'origin/feature/style'で最新です。 コミットするものがない、作業ディレクトリがクリーンである –
これは、ステージングされない変更やプットするコミットがないことを意味します。問題があるかどうかを確認するには、ファイルを変更して 'git status'コマンドをもう一度実行して出力を確認してください。 –